home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / LOGO / 3827.ZIP / LOGOHLP.ZIP / CLOSE.HLP < prev    next >
Encoding:
Text File  |  1990-06-12  |  349 b   |  12 lines

  1. close  -- Command, one input.
  2.      The input must be a file descriptor.  The file is closed.   This  must
  3.      be done when you've finished reading or writing the file.
  4.  
  5.      Sample program:
  6.  
  7.      make "fd openwrite "outfile
  8.      fileprint :fd "Hello.
  9.      close :fd
  10.  
  11.      This will create a file named outfile containing the word Hello.
  12.